home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 301-325 / disk_313 / uucp / uucp1.lzh / src / lib / tmpfile.c < prev    next >
C/C++ Source or Header  |  1990-01-10  |  376b  |  23 lines

  1.  
  2. /*
  3.  *  TMPFILE.C
  4.  *
  5.  *  (C) Copyright 1989-1990 by Matthew Dillon,  All Rights Reserved.
  6.  *
  7.  *  create a temporary file
  8.  *
  9.  *  template limited to 16 chars
  10.  */
  11.  
  12. char *
  13. TmpFileName(template)
  14. char *template;
  15. {
  16.     static char Template[256];
  17.     static unsigned short Idx;
  18.  
  19.     sprintf(Template, "%s-%08lx.TMP", template, (long)FindTask(NULL) + Idx++);
  20.     return(Template);
  21. }
  22.  
  23.